/*
html {
    font-size: 62.5%;
}

*,
::before,
::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*/

#accueil .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ############# Elements communs  ################################################################### */
#accueil article {
    margin-left: 2rem;
    margin-right: 2rem;
}

#accueil > section.section1.cadre1{
    display: flex;
    flex-direction: column;
}

#accueil > section.section1.cadre1 > article{
    display: flex;
    flex-direction: column;       
}

#accueil > section.section2.cadre1{
    display: flex;
    flex-direction: column;
}

#accueil > section.section2.cadre1 > article{
    display: flex;
    flex-direction: column;
}

#accueil .section3{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

#accueil > section.section3 > div{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#accueil > section.section3 > div > article{
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#accueil > section.section3 > div article > p{
    text-align: center;
    padding: 1rem;
}

#accueil .section4, section.section6 > article.s6Art2 > div > p, #accueil > section.section5 > div.note > p {
    background-color: lightgrey;
}

#accueil > section.section5 > div.etapes{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#accueil > section.section5 > div.etapes > div{
    margin-top: 2rem ;
    margin-bottom: 2rem;
}


#accueil #arrowLeft {
    font-size: 4rem;
}

#accueil #photoCam {
    width: 10%;
    height: auto;
    margin-left: 20%;
}


/* ############# Pour les écrans larges  ################################################################### */
@media screen and (min-width: 1025px) {}

/* ############# Pour les écrans moyens  ################################################################### */

@media screen and (min-width: 769px) and (max-width: 1024px) {

    #accueil #arrowLeft {
        font-size: 3.5rem;
    }

    #accueil #photoCam {
        width: 15%;
        margin-left: 30%;
    }

    #accueil .section5 .etapes {
        justify-content: center;
        flex-wrap: wrap;

    }

    #accueil .section5 .etapes div {
        width: 100%;
        text-align: justify;
        margin-bottom: 1rem;
    }

}


/* ############# Pour les petits écrans mobile ################################################################### */
@media screen and (max-width: 768px) {

    
    #accueil #arrowLeft {
        font-size: 2.5rem;
    }

    #accueil #photoCam {
        width: 25%;
        margin-left: 40%;
    }

    #accueil section {
        width: 100%;
    }

    #accueil article {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    #accueil > section.section3{
        flex-direction: column;
    }

    #accueil > section.section3 > div.s3DivDroite{
        margin-top: 0;
        margin-bottom: 0;
    }

    #accueil > section.section5 > article > div.etapes{
        display: flex;
        flex-direction: column;
    }


    /*
    #accueil .section5 .etapes div {
        width: 100%;
        text-align: justify;
        margin-bottom: 1rem;
    }
    */

}